---------------------- Открыть viewtopic.tpl и найти ------------------------------------

<p class="avatar">{postrow.POSTER_AVATAR}</p>

----------------------- Заменить на --------------------------------------

<a class="santa-hat"><p class="avatar">{postrow.POSTER_AVATAR}</p></a>

----------------------- Найти ---------------------------------------------

<p class="avatar">{postrow.POSTER_AVATAR}</p>

----------------------- Заменить на --------------------------------------

<a class="santa-hat"><p class="avatar">{postrow.POSTER_AVATAR}</p></a>

---------------------- Открыть usercp_viewprofile.tpl и найти ------------------------------------

{AVATAR_IMG}

----------------------- Заменить на --------------------------------------

<a class="santa-hatprofile">{AVATAR_IMG}</a>

---------------------- Открыть page_header.css и самый внизу ставить ------------------------------------
---------------------- Открыть main.css и самый внизу ставить для LTS и 2.1.5 ------------------------------------

.santa-hat {position: relative;}
 
.santa-hat:before {
 
    content: '';
    position: absolute;
    background: url(../images/shapka.png);
    width: 73px;
    height: 100px;
    margin-top: 15px;
    left: -136px;
 
}

.santa-hatprofile {position: relative;}
 
.santa-hatprofile:before {
    content: '';
    position: absolute;
    background: url(../images/shapka.png);
    width: 73px;
    height: 100px;
    margin-top: -7px;
    left: -28px;
 
}


